home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / enddemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  268 b   |  11 lines

  1. program EndDemo;
  2. begin
  3.   if True then
  4.     WriteLn ('single statement');
  5.   if True then
  6.     begin                     { clamp statement1 ... }
  7.       WriteLn ('statement1');
  8.       WriteLn ('statement2')
  9.     end                       { ... to statement2 }
  10. end.
  11.